home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mandrake_MDKSA-2003-038.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  102 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. # This plugin text was extracted from Mandrake Linux Security Advisory MDKSA-2003:038
  5. #
  6.  
  7.  
  8. if ( ! defined_func("bn_random") ) exit(0);
  9. if(description)
  10. {
  11.  script_id(14022);
  12.  script_bugtraq_id(7112);
  13.  script_version ("$Revision: 1.3 $");
  14.  script_cve_id("CAN-2003-0127");
  15.  
  16.  name["english"] = "MDKSA-2003:038: kernel";
  17.  
  18.  script_name(english:name["english"]);
  19.  
  20.  desc["english"] = "
  21. The remote host is missing the patch for the advisory MDKSA-2003:038 (kernel).
  22.  
  23.  
  24. A bug in the kernel module loader code could allow a local user to gain root
  25. privileges. This is done by a local user using ptrace and attaching to a
  26. modprobe process that is spawned if the user triggers the loading of a kernel
  27. module.
  28. A temporary workaround can be used to defend against this flaw. It is possible
  29. to temporarily disable the kmod kernel module loading subsystem in the kernel
  30. after all of the required kernel modules have been loaded. Be sure that you do
  31. not need to load additional kernel modules after implementing this workaround.
  32. To use it, as root execute:
  33. echo /no/such/file >/proc/sys/kernel/modprobe
  34. To automate this, you may wish to add it as the last line of the
  35. /etc/rc.d/rc.local file. You can revert this change by replacing the content
  36. '/sbin/modprobe' in the /proc/sys/kernel/modprobe file. The root user can still
  37. manually load kernel modules with this workaround in place.
  38. This update applies a patch to correct the problem. All users should upgrade.
  39. Please note that the Mandrake Linux 9.1 kernel already has this patch, and an
  40. updated kernel for Mandrake Linux 8.2 will be available shortly.
  41. For instructions on how to upgrade your kernel in Mandrake Linux, please refer
  42. to:
  43. http://www.mandrakesecure.net/en/kernelupdate.php
  44.  
  45.  
  46. Solution : http://www.mandrakesoft.com/security/advisories?name=MDKSA-2003:038
  47. Risk factor : High";
  48.  
  49.  
  50.  
  51.  script_description(english:desc["english"]);
  52.  
  53.  summary["english"] = "Check for the version of the kernel package";
  54.  script_summary(english:summary["english"]);
  55.  
  56.  script_category(ACT_GATHER_INFO);
  57.  
  58.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  59.  family["english"] = "Mandrake Local Security Checks";
  60.  script_family(english:family["english"]);
  61.  
  62.  script_dependencies("ssh_get_info.nasl");
  63.  script_require_keys("Host/Mandrake/rpm-list");
  64.  exit(0);
  65. }
  66.  
  67. include("rpm.inc");
  68. if ( rpm_check( reference:"kernel-2.4.19.32mdk-1-1mdk", release:"MDK9.0", yank:"mdk") )
  69. {
  70.  security_hole(0);
  71.  exit(0);
  72. }
  73. if ( rpm_check( reference:"kernel-BOOT-2.4.19.32mdk-1-1mdk", release:"MDK9.0", yank:"mdk") )
  74. {
  75.  security_hole(0);
  76.  exit(0);
  77. }
  78. if ( rpm_check( reference:"kernel-enterprise-2.4.19.32mdk-1-1mdk", release:"MDK9.0", yank:"mdk") )
  79. {
  80.  security_hole(0);
  81.  exit(0);
  82. }
  83. if ( rpm_check( reference:"kernel-secure-2.4.19.32mdk-1-1mdk", release:"MDK9.0", yank:"mdk") )
  84. {
  85.  security_hole(0);
  86.  exit(0);
  87. }
  88. if ( rpm_check( reference:"kernel-smp-2.4.19.32mdk-1-1mdk", release:"MDK9.0", yank:"mdk") )
  89. {
  90.  security_hole(0);
  91.  exit(0);
  92. }
  93. if ( rpm_check( reference:"kernel-source-2.4.19-32mdk", release:"MDK9.0", yank:"mdk") )
  94. {
  95.  security_hole(0);
  96.  exit(0);
  97. }
  98. if (rpm_exists(rpm:"kernel-", release:"MDK9.0") )
  99. {
  100.  set_kb_item(name:"CAN-2003-0127", value:TRUE);
  101. }
  102.